home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Archive / Files / Standard File / SelectMultipleFiles / PrivateConditionals.h next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.7 KB  |  61 lines  |  [TEXT/CWIE]

  1. /*
  2. **    Apple Macintosh Developer Technical Support
  3. **
  4. **    Functions to help you when you are building and sending Apple events.
  5. **
  6. **    by Andy Bachorski, Apple Developer Technical Support
  7. **
  8. **    File:        PrivateConditionals.h
  9. **    Version:    1.0.1
  10. **
  11. **    Package:    DTS Utils
  12. **    Version:    0.3.5
  13. **
  14. **    Copyright © 1996 Apple Computer, Inc.
  15. **    All rights reserved.
  16. **
  17. **    You may incorporate this sample code into your applications without
  18. **    restriction, though the sample code has been provided "AS IS" and the
  19. **    responsibility for its operation is 100% yours.  However, what you are
  20. **    not permitted to do is to redistribute the source as "DSC Sample Code"
  21. **    after having made changes. If you're going to re-distribute the source,
  22. **    we require that you make it clear in the source that the code was
  23. **    descended from Apple Sample Code, but that you've made changes.
  24. */
  25.  
  26. /*    
  27.  *    This header file contains conditional macro definitions that are used
  28.  *    to setup the environment for the project being built.
  29.  *    Add what ever conditionals are appropriate for your project.
  30.  */
  31.  
  32.  
  33.  
  34. /*
  35.  *    To allow the use of ToolBox calls which have now become obsolete on PowerPC, but
  36.  *    which are still needed for System 6 applications, we need to #define OBSOLETE.  If
  37.  *    Since we won't be using these calls, define this to 0 (false).
  38.  */
  39.  
  40. #define OBSOLETE    0
  41.  
  42. /*
  43.  *    Define the following conditionals appropriately so the project is compiled
  44.  *    using only the latest routines.
  45.  */
  46.  
  47. #define SystemSevenOrLater            1
  48. #define OLDROUTINENAMES                0
  49. #define OLDROUTINELOCATIONS            0
  50. #define HANDLE_ALL_REQUIRED_EVENTS    0
  51. #define OBSOLETE                    0
  52.  
  53.  
  54. /*
  55.  *    For this project we use the following macro to
  56.  *    turn on or off the use of precompiled headers.
  57.  */
  58.  
  59. #define USE_PRECOMPILED_HEADERS    FALSE
  60.  
  61.